home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-01
/
castools.zip
/
FUNC0H.ASM
< prev
next >
Wrap
Assembly Source File
|
1989-11-21
|
754b
|
30 lines
Include multi.inc
Include model.inc
;==============================================================================
;
; CAS function 0h -- Get Installed State
;
; Input:
; none
; Output:
; Installed State in AX
;==============================================================================
.CODE
CASGetInstalledState PROC
mov ax,MUX ; multiplex number -> al
mov ah,al ; multiplex number -> ah
mov al,0h ; function 0 -> al
int 2Fh
mov ah,0 ; zero out ah
ret
CASGetInstalledState endp
END